From 69d345b334c7a3fecdb0cd5f440fabd83a755309 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Sat, 18 Feb 2023 15:25:29 +0100 Subject: . --- src/routes/[lang=lang]/sections/contact.svelte | 69 ++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/routes/[lang=lang]/sections/contact.svelte (limited to 'src/routes/[lang=lang]/sections/contact.svelte') diff --git a/src/routes/[lang=lang]/sections/contact.svelte b/src/routes/[lang=lang]/sections/contact.svelte new file mode 100644 index 0000000..b058180 --- /dev/null +++ b/src/routes/[lang=lang]/sections/contact.svelte @@ -0,0 +1,69 @@ + + + + +{#if visible} +
+
+
+

{$LL.contact.title()}

+
+ +
+
+
+ {#if (model.addressLines?.length ?? 0) > 0} +
+
{$LL.contact.addressTitle()}
+
+ {#each model.addressLines as line} + {line}
+ {/each} +
+
+ {/if} + {#if model.email} +
+
{$LL.contact.emailTitle()}
+
+ {model.email} +
+
+ {/if} + {#if model.phone} +
+
{$LL.contact.phoneTitle()}
+
+

{model.phone}

+ {#if model.phoneHours} +

{model.phoneHours}

+ {/if} +
+
+ {/if} +
+
+
+
+
+
+{/if} -- cgit v1.3